(defun customize-apropos-options (regexp &optional arg)
"Customize all loaded customizable options matching REGEXP.
With prefix arg, include variables that are not customizable options
-\(but we recommend using `apropos-variable' instead)."
+\(but it is better to use `apropos-variable' if you want to find those)."
(interactive "sCustomize options (regexp): \nP")
(customize-apropos regexp (or arg 'options)))
(get (car parents) 'custom-links))))
(many (> (length links) 2)))
(when links
+ (let ((pt (point))
+ (left-margin (+ left-margin 2)))
(insert "\nParent documentation: ")
(while links
(push (widget-create-child-and-convert
(insert ", and ")
(insert " and ")))
(t
- (insert ", ")))))))
+ (insert ", "))))
+ (fill-region-as-paragraph pt (point))
+ (delete-to-left-margin (1+ pt) (+ pt 2))))))
(if parents
(insert "\n")
(delete-region start (point)))